type runtime.iface
13 uses
runtime (current package)
alg.go#L97: a := (*iface)(p)
alg.go#L234: x := *(*iface)(p)
alg.go#L235: y := *(*iface)(q)
iface.go#L432: func assertI2I2(inter *interfacetype, i iface) (r iface) {
iface.go#L456: func assertE2I2(inter *interfacetype, e eface) (r iface) {
iface.go#L471: func reflect_ifaceE2I(inter *interfacetype, e eface, dst *iface) {
iface.go#L472: *dst = iface{assertE2I(inter, e._type), e.data}
iface.go#L476: func reflectlite_ifaceE2I(inter *interfacetype, e eface, dst *iface) {
iface.go#L477: *dst = iface{assertE2I(inter, e._type), e.data}
mfinal.go#L233: (*iface)(r).tab = assertE2I(ityp, (*eface)(r)._type)
print.go#L260: func printiface(i iface) {
runtime2.go#L202: type iface struct {